home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_03
/
1003032a
< prev
next >
Wrap
Text File
|
1992-01-22
|
577b
|
22 lines
/****************************************************
* This is the definition of the class, TEST_CLASS.
* It is defined as a typedefed struct. It possesses
* public data: Test_Name, and public methods:
* init_object, process_data and disp_results.
* This object is compiled into ROM.
****************************************************/
file class.h
typedef struct {
char Test_Name[8];
void (*init_object) (void);
void (*process_data) (float *parameters, float *results);
void (*disp_results) (float *results);
} TEST_CLASS;